home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / graphics / whirlgif201 / src.original / makefile next >
Makefile  |  1996-11-01  |  639b  |  41 lines

  1. # Makefile for whirlgif utility
  2. #####################################
  3. # Choose your favorite compiler.
  4. #
  5. # GNU C
  6. CC = gcc
  7. #
  8. # standard
  9. #CC = cc
  10.  
  11. #####################################
  12. # Optimization flags
  13. #
  14. #  GNU C
  15. #OPTIMIZE= -fcombine-regs -O
  16. # standard
  17. OPTIMIZE = -O
  18.  
  19. #####################################
  20. # Debug flags
  21. #
  22. #DEBUG = -g
  23. #DEBUG = -ggdb
  24.  
  25. #####################################
  26. # CFLAGS
  27. #        If you need <strings.h>, add -DUSE_STRINGS_H
  28. #
  29. CFLAGS    =  $(DEBUG) $(OPTIMIZE)
  30.  
  31. all: whirlgif
  32.  
  33. whirlgif:
  34.     $(CC) $(CFLAGS) -o whirlgif whirlgif.c
  35.  
  36.  
  37. # DO NOT DELETE THIS LINE AND DEPENDECIES BELOW
  38.  
  39. whirlgif: whirlgif.h
  40. whirlgif: whirlgif.c
  41.